home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / gnuish / swalibas / sw_mode.c < prev    next >
C/C++ Source or Header  |  1990-09-10  |  2KB  |  62 lines

  1. /* sw_mode.c - set the swapping mode
  2.    Copyright (C) 1990 by Thorsten Ohl, td12@ddagsi3.bitnet
  3.  
  4.    This file is part of SWAPLIB (the library), a library for efficient
  5.    execution of child processes under MS-DOS.
  6.  
  7.    The library is free software; you can redistribute it and/or modify
  8.    it under the terms of the GNU General Public License as published by
  9.    the Free Software Foundation; either version 1, or (at your option)
  10.    any later version.
  11.  
  12.    The library is distributed in the hope that it will be useful,
  13.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  14.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15.    GNU General Public License for more details.
  16.  
  17.    You should have received a copy of the GNU General Public License
  18.    along with the library; if not, write to the Free Software
  19.    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  20.  
  21.    $Header: e:/gnu/swaplib/RCS/sw_mode.c'v 0.9 90/09/09 21:44:03 tho Stable $
  22.  */
  23.  
  24. #include <stdio.h>
  25. #include <stdlib.h>
  26. #include <string.h>
  27.  
  28. #include "swaplib.h"
  29.  
  30.  
  31. enum swap_swapping_mode
  32. swap_set_swapping_mode (char *cmd, char **argv)
  33. {
  34.   /* Default to XMS.  */
  35.  
  36.   enum swapping_mode mode = xms;
  37.  
  38.   char *env = getenv ("SWAPPING");
  39.  
  40.   if (!env)
  41.     return mode;
  42.  
  43.   if (strcmp ("xms", env) == 0)
  44.     mode = xms;
  45.   else if (strcmp ("ems", env) == 0)
  46.     mode = ems;
  47.   else if (strcmp ("disk", env) == 0)
  48.     mode = disk;
  49.   else if (strcmp ("none", env) == 0)
  50.     mode = none;
  51.  
  52.   return mode;
  53. }
  54.  
  55. /* 
  56.  * Local Variables:
  57.  * mode:C
  58.  * ChangeLog:ChangeLog
  59.  * compile-command:make
  60.  * End:
  61.  */
  62.